home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / test_manifest_array3.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  489 b   |  31 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class TEST_MANIFEST_ARRAY3
  5.  
  6. creation make
  7.  
  8. feature
  9.  
  10.    make is
  11.       do
  12.      foo(<<("foo").twin>>);
  13.      foo(<<"foo">>);
  14.      !!aux.make(<<(string.twin)>>);
  15.       end;
  16.  
  17. feature {NONE}
  18.    
  19.    foo(array_string: ARRAY[STRING]) is
  20.       do
  21.       end;
  22.  
  23.    string: STRING is
  24.       once
  25.      !!Result.make(80);
  26.       end;
  27.  
  28.    aux: AUX_MANIFEST_ARRAY3; 
  29.  
  30. end -- TEST_MANIFEST_ARRAY3
  31.